【例子介绍】Microsoft Visual Studio 2005 C#.贪吃蛇小游戏
用Microsoft Visual Studio 2005 C#.编写的一个贪吃蛇小游戏,可以自定义游戏速度和游戏模式!
【相关图片】
【源码结构】
.
├── 贪吃蛇
│ ├── 贪吃蛇
│ │ ├── 贪吃蛇
│ │ │ ├── Bean.cs
│ │ │ ├── Block.cs
│ │ │ ├── Drawback.cs
│ │ │ ├── Floor.cs
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PubClass.cs
│ │ │ ├── Snake.cs
│ │ │ ├── Speed.Designer.cs
│ │ │ ├── Speed.cs
│ │ │ ├── Speed.resx
│ │ │ ├── Start.Designer.cs
│ │ │ ├── Start.cs
│ │ │ ├── Start.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── 贪吃蛇.exe
│ │ │ │ ├── 贪吃蛇.pdb
│ │ │ │ └── 贪吃蛇.vshost.exe
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Refactor
│ │ │ │ │ ├── TempPE
│ │ │ │ │ ├── 贪吃蛇.Properties.Resources.resources
│ │ │ │ │ ├── 贪吃蛇.Speed.resources
│ │ │ │ │ ├── 贪吃蛇.Start.resources
│ │ │ │ │ ├── 贪吃蛇.csproj.GenerateResource.Cache
│ │ │ │ │ ├── 贪吃蛇.exe
│ │ │ │ │ └── 贪吃蛇.pdb
│ │ │ │ ├── 贪吃蛇.csproj.FileList.txt
│ │ │ │ └── 贪吃蛇.csproj.FileListAbsolute.txt
│ │ │ ├── picture
│ │ │ │ └── tcs.jpg
│ │ │ └── 贪吃蛇.csproj
│ │ ├── 贪吃蛇.sln
│ │ └── 贪吃蛇.suo
│ ├── 贪吃蛇拓展
│ │ ├── 7haiwwmt.jpg
│ │ ├── Thumbs.db
│ │ ├── tcs.jpg
│ │ ├── u=1921829615,3580870282&fm=0&gp=6.jpg
│ │ ├── u=4261089419,1225279838&fm=0&gp=18.jpg
│ │ └── u=896191707,2909587093&fm=0&gp=28.jpg
│ └── 贪吃蛇游戏.pptx
└── 5t6t网_MicrosoftVisualStudio2005C#.贪吃蛇小游戏.rar
12 directories, 41 files
评论